Passed
Push — master ( 74c350...233e8c )
by Kevin Van
03:58 queued 12s
created

GamesPage   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 14
dl 0
loc 15
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A render 0 13 1
1
import React, { Component } from "react"
2
3
import Layout from "../layouts/index"
4
5
import SEO from "../components/seo"
6
7
import MatchesOverview from "../components/MatchesPreseason"
8
9
class GamesPage extends Component {
10
  render() {
11
    return (
12
      <Layout>
13
        <SEO
14
          lang="nl-BE"
15
          title="Matchoverzicht voorbereiding"
16
          description="Overzicht van alle gespeelde en toekomstige wedstrijden tijdens de voorbereiding van het nieuwe seizoen."
17
          path={this.props.location.pathname}
18
        />
19
        <div className={`games__template`}>
20
          <MatchesOverview />
21
        </div>
22
      </Layout>
23
    )
24
  }
25
}
26
27
export default GamesPage
28